Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
stream-browserify
Advanced tools
The stream-browserify npm package is a browser-compatible version of Node.js's core stream module. It allows developers to use stream-based operations in browser environments, similar to how they would in Node.js. This includes the ability to create readable, writable, duplex, and transform streams, which can be used for handling data in a more efficient and modular way.
Creating a Readable Stream
This code sample demonstrates how to create a readable stream that emits data from an array. Each chunk of data is pushed to the stream and logged to the console when the 'data' event is emitted.
const Stream = require('stream-browserify');
let data = ['stream', 'browserify'];
let readable = Stream.Readable({
read(size) {
if (data.length === 0) this.push(null);
else this.push(data.shift());
}
});
readable.on('data', (chunk) => {
console.log(chunk.toString());
});
Creating a Writable Stream
This code sample shows how to create a writable stream that logs any data written to it to the console.
const Stream = require('stream-browserify');
let writable = new Stream.Writable({
write(chunk, encoding, callback) {
console.log(chunk.toString());
callback();
}
});
writable.write('Hello, world!');
Piping Streams
This example demonstrates how to pipe data from a readable stream directly into a writable stream. The data from the readable stream is logged to the console as it's written to the writable stream.
const Stream = require('stream-browserify');
let readable = Stream.Readable.from(['stream', 'browserify']);
let writable = new Stream.Writable({
write(chunk, encoding, callback) {
console.log(chunk.toString());
callback();
}
});
readable.pipe(writable);
Transform Stream
This code sample illustrates how to create a transform stream that converts any input data to uppercase. The transform stream is piped from stdin and then piped to stdout, effectively creating a stream that uppercases input from the command line.
const Stream = require('stream-browserify');
let transform = new Stream.Transform({
transform(chunk, encoding, callback) {
this.push(chunk.toString().toUpperCase());
callback();
}
});
process.stdin.pipe(transform).pipe(process.stdout);
The readable-stream package is a mirror of the stream module from Node.js core, which is specifically maintained for compatibility with different Node.js versions. It provides the same API as stream-browserify but is more focused on Node.js environments rather than the browser.
Through2 is a tiny wrapper around Node.js streams.Transform that makes it easier to create transform streams. It is similar to stream-browserify's transform stream functionality but with a simpler API for creating transform streams.
Highland.js manages synchronous and asynchronous code easily, using nothing more than standard JavaScript and Node-like streams. While stream-browserify aims to replicate Node's stream module in the browser, Highland.js provides higher-level stream operations and utilities, making it more powerful for complex stream processing tasks.
the stream module from node core, for browsers!
Consult the node core documentation on streams.
With npm do:
npm install stream-browserify
but if you are using browserify you will get this module automatically when you
do require('stream')
.
MIT
FAQs
the stream module from node core for browsers
The npm package stream-browserify receives a total of 8,752,106 weekly downloads. As such, stream-browserify popularity was classified as popular.
We found that stream-browserify demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 40 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.